home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 1 / BBS in a box - Trilogy I.iso / Files / QuickTime / QT Tools / NavMovie Toolkit Patch < prev    next >
Encoding:
Text File  |  1993-05-08  |  3.9 KB  |  106 lines  |  [TEXT/GEOL]

  1. Item    5297790                         4-May-93        17:36PDT
  2.  
  3. From:   YAWITZ.M                        Yawitz, Mitchell
  4.  
  5. To:     ABBATE.VIDEO                    Abbate Video Consults, M Abbate,PAS
  6.         GER.XSE0193                     Alexander von Below,DE,IDV
  7.         JTIME                           American Museum of Nat History,APD
  8.         MEDIAPROGRAM                    Apple Multimedia Program Info
  9.         ARTINST                         Art Inst of Chicago,Alan Newman,PAS
  10.         HOL0075                         Informaat Hilversum,NL,IVC
  11.         COOK4                           PIE/Multimedia Bus Dev Mgr,F Cook
  12.         ELEC.EGGPLNT                    Electric Eggplant, David Fox,PAS
  13.         GALILEO                         Galileo Inc, Wittenstein,PAS
  14.         MACCONSULT..                    Mac Consult Berlin,DE,IDV
  15.  
  16. Item forwarded by       DOI          to PARCWAY.DVJ 
  17.                                         KOG 
  18.  
  19. Item forwarded by       TANAKA3      to NAGASAKA1 
  20.  
  21. Item forwarded by       MEDIAPROGRAM to AMP.US$ 
  22.  
  23. ------------------------------------------------------------------------------
  24.  
  25. Sub:    NavMovie Toolkit Patch
  26.  
  27. Attn: Mark Abbate
  28. Attn: von Below,DE,IDV|Alexander
  29. Attn: Museum of Nat History|American
  30. Attn: Apple MM Program
  31. Attn: Art Inst of Chicago,Alan Newma
  32. Attn: Marc Coenders
  33. Attn: Ferhan Cook
  34. Attn: Electric Eggplant, David Fox,P
  35. Attn: Galileo Inc, Wittenstein,PAS
  36. Attn: Matthias Haesner
  37. SentBy: Mitchell Yawitz
  38.  
  39. Date   5/4/93
  40. Subject    NavMovie Toolkit Patch
  41. From   Mitchell Yawitz
  42. To Mark Abbate, Alexander von Below,DE,IDV, American Museum of Nat History,
  43. Apple MM Program, Art Inst of Chicago,Alan Newma, Marc Coenders, Ferhan Cook,
  44. Electric Eggplant, David Fox,P, Galileo Inc, Wittenstein,PAS, Matthias
  45. Haesner, Gerth Hansson, Interactive Multimedia, S Sayr, LeTuan, Phac, David
  46. Levy, Donna Mann, Peter Mitchell, Multi-facet Communications,Ros, NYU Medical
  47. Ctr, Roy Smith,HEP, Conor O'Nolan, Faith Pai, Paradigm Mltmdia Inc,R Jones,P,
  48. Christiane Reller, Spain - Dev Program Mgr, F For, Stew Sutton, US Apple MM
  49. Program, Christian Zürn
  50.  
  51. Mail*Link® SMTP               NavMovie Toolkit Patch
  52. Navigators,
  53.  
  54. For those of you who haven't already encountered this problem, it turns out
  55. that if ApppleTalk isn't turned on before starting the Navigable Movie
  56. Toolkit, the stack will crash ungracefully. To prevent this, you should
  57. replace the getNodeList handler (in the Setup card script) with the handler
  58. included below. This handler will check if AppleTalk is turned on, and report
  59. an error if it isn't. This fix will be incorporated into the next version of
  60. the toolkit (if that ever happens...).
  61.  
  62. It also turns out that if the video window is opened on a monitor that is
  63. different from the one driven by the video digitizer board, then the movie
  64. created may be corrupted (and the stack may crash). This also may happen if
  65. the window is very large, and extends outside the digitizer's screen rect. I
  66. have confirmed this problem on the RasterOps boards, and have gotten similar
  67. reports for the Digital Film board (thanks, Yarom). This problem is being
  68. looked at, but for now you should make sure that the video window is contained
  69. entirely within the bounds of the digiter's screen rect.
  70.  
  71. Regards,
  72. Mitchell Yawitz
  73. Apple Computer, Inc.
  74. ATG / Human Interface Group
  75.  
  76. -------------------------------------
  77.  
  78. on getNodeList
  79.   global TheNode, TheZone, nodeName
  80.   set the cursor to watch
  81.   clearNodeList
  82.   set cursor to watch
  83.   if TheZone is empty then
  84.     nodeStatus "(NO ZONE SELECTED)"
  85.   else
  86.     nodeStatus "(LOOKING FOR CAM NODES)"
  87.     get DeviceLookUp("=","CAM",TheZone)
  88.     if "Error:" is in it then
  89.       CNXError it
  90.       nodeStatus "(NO ZONE SELECTED)"
  91.       exit getNodeList
  92.     end if
  93.     put it into cd fld NodeList
  94.     put the number of lines of cd fld NodeList into nodeCount
  95.     if nodeCount = 0 then
  96.       nodeStatus "(NO NODES FOUND)"
  97.     else if nodeCount = 1 then
  98.       selectNode (line 1 of cd fld NodeList)
  99.     else
  100.       askForNode
  101.     end if
  102.   end if
  103. end getNodeList
  104.  
  105.  
  106.